string[] rbstr;
string[] rbval;
rbstr = new String[] {"Ford", "Chevy", "Honda", "Chrysler"};
rbval = new String[] {"Tough", "Rock", "Dependable", "New"};
FarPoint.Web.Spread.RadioButtonListCellType rb = new FarPoint.Web.Spread.RadioButtonListCellType(rbstr, rbval);
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = rb;
FpSpread1.ActiveSheetView.SetValue(0, 0, "Tough");
Dim rbstr As String()
Dim rbval As String()
rbstr = New String() {"Ford", "Chevy", "Honda", "Chrysler"}
rbval = New String() {"Tough", "Rock", "Dependable", "New"}
Dim rb As New FarPoint.Web.Spread.RadioButtonListCellType(rbstr, rbval)
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = rb
FpSpread1.ActiveSheetView.SetValue(0, 0, "Tough")